home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fritz: All Fritz
/
All Fritz.zip
/
All Fritz
/
FILES
/
WORDMISC
/
ACTCAL.LZH
/
CINSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1991-07-17
|
2KB
|
55 lines
ECHO OFF
CLS
ECHO
ECHO ACTCLDR INSTALLATION
ECHO
ECHO If an ACTMENU directory does not exist on drive C, this BAT file will
ECHO create an ACTCLDR directory and copy all of the ActCalendar files.
ECHO
ECHO If ActMenu has been installed in the ACTMENU directory on the C drive, the
ECHO ACTMENU.SKD file will be renamed ACTCLDR.SKD and all of the ActCalendar
ECHO files will be copied to the ACTMENU directory.
ECHO
ECHO To install on drive D, change all "C:"s to "D:"s.
ECHO
ECHO Press Ctrl-C to cancel installation, or
PAUSE
CLS
COPY A:ACTCLDR.BAT C:\ACTMENU\ACTCLDR.BAT
IF EXIST C:ACTCLDR.BAT GOTO :ActMenu
COPY A:ACTCLDR.BAT C:\ACTCLDR.BAT
IF EXIST C:\ACTCLDR.BAT GOTO :ActCldr
ECHO ░░░░░░░░░░░░░░░░░░░░░░░░░░
ECHO ░░ Drive C not found! ░░
ECHO ░░░░░░░░░░░░░░░░░░░░░░░░░░
GOTO :Exit
:ActMenu
C:
CD\
ERASE C:\ACTMENU\ACTCLDR.BAT
COPY A:*.* C:\ACTMENU
ERASE C:\ACTMENU\ACTCLDR.SKD
RENAME C:\ACTMENU\ACTMENU.SKD ACTCLDR.SKD
CLS
ECHO
ECHO ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
ECHO ░░ Exit to DOS and change to drive C. ░░
ECHO ░░ Type ACTMENU to start ActMenu on the C drive. ░░
ECHO ░░ Start ActCalendar with ActMenu's calendar option. ░░
ECHO ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
:ActCldr
C:
CD\
MKDIR C:\ACTCLDR
COPY A:*.* C:\ACTCLDR
CLS
ECHO
ECHO ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
ECHO ░░ Exit to DOS and change to drive C. ░░
ECHO ░░ Type ACTCLDR to start ActCalendar on the C drive. ░░
ECHO ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
:Exit
PAUSE
CLS